home *** CD-ROM | disk | FTP | other *** search
- ; This is test of many of the features of the Installer
- ; Prints out debugging info if run from CLI
- (message
- "\nXLabProcess V1.2.2\n"
- "© Xavier NUEL, 1997\n\n"
- "Ce programme est ShareWare "
- "--- "
- "Pensez à vous enregistrer...\n\n"
- )
- (set @default-dest (pathonly (expandpath "Work:"))
- )
- (if (= @language "français")
-
- (
- (set #where_install "Où voulez-vous installer\nle répertoire 'XLabProcess' ?")
- (set #copying "Copie de XLabProcess vers %s...")
- (set #instlocdir "Installation du fichier catalogue")
- )
-
- ; ---- English ----
- (
- (set #where_install "Where do you want to put\nthe 'XLabProcess' directory ?")
- (set #copying "Copying XLabProcess to %s...")
- )
-
- )
-
- (set InstallDir
- (askdir
- (prompt #where_install)
- (help @askdir-help)
- (default @default-dest)
- )
- )
-
- (set DestDir
- (tackon InstallDir "XLabProcess")
- )
-
-
- (makedir DestDir
- (infos)
- )
-
- (copyfiles
- (prompt #copying DestDir)
- (help @copyfiles-help)
- (source "XLabProcess")
- (dest DestDir)
- (infos)
- (all)
- )
- (if
- (= @language "français")
- (
- (set LocDir
- (askdir
- (prompt #instlocdir)
- (help @askdir-help)
- (default "Locale:catalogs/français")
- )
- )
- (copyfiles
- (prompt )
- (help @copyfiles-help)
- (source "Catalogs")
- (dest LocDir)
- (all)
- )
- )
- )
- (message
- "\nXLabProcess V1.2.2\n"
- "© Xavier NUEL, 1997\n\n"
- "Ce programme est ShareWare "
- "--- "
- "Pensez à vous enregistrer...\n\n"
- "--- "
- "Visitez le site de BadDolls Production\n"
- "http://www.a2points.com/homepage/3698138/\n"
- )